home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / misc / plhelp / pl3d < prev    next >
Text File  |  1996-04-09  |  633b  |  27 lines

  1. pl3d:
  2.  
  3. Synopsis: Draw 3-dimensional lines.
  4.  
  5. Syntax: pl3d ( X, Y, Z, BR )
  6.  
  7. Description:
  8.  
  9.     pl3d draws lines in a 3-dimensional plot. The arguments X, Y,
  10.     and Z contain the coordinates of the endpoints of the line.
  11.  
  12.     Example:
  13.  
  14.         # Draw a single line in 3-D
  15.         pl3d ([x1; x2], [y1; y2], [z1; z2])
  16.  
  17.     The X, Y, and Z arguments can contain more 2 elements, in
  18.     which case N-1 (N is the dimension of X, Y, and Z) lines will
  19.     be drawn.
  20.  
  21.         The last argument, BR (optional), specifies BReakpoints in the
  22.     line. Without BR, the line conects all specified
  23.     coordinates. When BR is specified, the line is broken every N
  24.     points. 
  25.  
  26. See Also: 
  27.